home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / TUTOROOT.PAK / STEP11DV.RC < prev    next >
Text File  |  1997-05-06  |  779b  |  35 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows - (C) Copyright 1991, 1993 by Borland International
  3. //   Tutorial application -- step11dv.rc
  4. //----------------------------------------------------------------------------
  5. #define CM_PENSIZE    306
  6. #define CM_PENCOLOR   307
  7. #define IDM_DRAWVIEW  212
  8. #define IDS_FILEINFO  215
  9.  
  10. #ifdef RC_INVOKED
  11. #ifndef WORKSHOP_INVOKED
  12. # include <windows.h>
  13. #endif
  14.  
  15. #include <owl/inputdia.rc>
  16.  
  17. IDM_DRAWVIEW MENU 
  18. {
  19.  POPUP "&Tools"
  20.  {
  21.   MENUITEM "Pen &Size",  CM_PENSIZE
  22.   MENUITEM "Pen &Color", CM_PENCOLOR
  23.  }
  24. }
  25.  
  26. STRINGTABLE 
  27. {
  28.  CM_PENSIZE, "Changes the pen width"
  29.  CM_PENCOLOR, "Changes the pen color"
  30.  IDS_FILEINFO, "Lines from Step 11"
  31. }
  32.  
  33. #endif  // RC_INVOKED
  34.  
  35.